/* ================= RESET ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    color: #333;
    line-height: 1.6;
    background: #fff;
}

/* ================= CONTAINER ================= */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ================= HEADER ================= */
.header {
    background: #0b3c5d;
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* ================= LOGO ================= */
.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 55px;
    width: auto;
}

/* ================= NAVIGATION ================= */
.nav {
    display: flex;
    align-items: center;
}

.nav a {
    color: #fff;
    margin-left: 25px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: 0.3s;
}

.nav a:hover {
    color: #f9a825;
}

/* ================= DROPDOWN ================= */
.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 35px;
    left: 0;
    background: #0b3c5d;
    flex-direction: column;
    min-width: 200px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.dropdown-menu a {
    display: block;
    padding: 10px 15px;
    margin: 0;
    font-size: 14px;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

/* ================= MOBILE MENU ================= */
.menu-toggle {
    display: none;
    color: #fff;
    font-size: 26px;
    cursor: pointer;
}

/* ================= HERO SLIDER ================= */
.hero-slider {
    position: relative;
    height: 80vh;
    overflow: hidden;
}

.slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

/* ================= HERO CONTENT ================= */
.hero-content {
    position: relative;
    color: #fff;
    text-align: center;
    max-width: 800px;
    padding: 20px;
    animation: fadeUp 1s ease;
}

.hero-content h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 18px;
}

/* ================= SECTIONS ================= */
.section {
    padding: 70px 0;
    text-align: center;
}

.section-text {
    max-width: 800px;
    margin: 20px auto;
}

/* ================= BACKGROUND ================= */
.bg-light {
    background: #f5f7f9;
}

/* ================= FEATURES ================= */
.features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.feature-box {
    background: #fff;
    padding: 30px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.why-section {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 40px;
    align-items: center;
}

.why-title h2 {
    font-size: 28px;
    color: #0b3c5d;
}

.industries-section {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 40px;
    align-items: center;
}

.industries-title h2 {
    font-size: 28px;
    color: #0b3c5d;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.industry-box {
    background: #fff;
    padding: 25px;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

/* ================= MANUFACTURING FACILITY SECTION ================= */

.section {
    padding: 80px 0;
}

.container.column {
    flex-direction: column;
    text-align: center;
}

.section h2 {
    font-size: 32px;
    color: #0b3c5d;
    margin-bottom: 20px;
}

.section-text {
    max-width: 750px;
    margin: 0 auto 25px;
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

/* button spacing */
.section .btn-secondary {
    margin-top: 15px;
}

.section {
    padding: 80px 0;
    background: #f5f7f9;
}

/* ================= PRODUCTS SECTION ================= */

.products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

/* Product Card */

.product-card {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.35s ease;
    text-align: center;
    padding-bottom: 20px;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Product Image */

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* Product Title */

.product-card h3 {
    font-size: 18px;
    margin: 15px 10px 10px;
    color: #0b3c5d;
}

/* Product Description */

.product-card p {
    font-size: 14px;
    color: #666;
    padding: 0 15px;
    line-height: 1.6;
}


/* ================= BUTTONS ================= */

/* Primary Button */

.btn-primary {
    background: linear-gradient(135deg, #f9a825, #ffcc33);
    color: #000;
    padding: 12px 32px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    display: inline-block;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}


/* Secondary Button */

.btn-secondary {
    background: transparent;
    border: 2px solid #0b3c5d;
    color: #0b3c5d;
    padding: 10px 26px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    display: inline-block;
    margin-top: 25px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #0b3c5d;
    color: #fff;
    transform: translateY(-2px);
}

.view-all-btn {
    text-align: center;
    margin-top: 25px;
}

/* PAGE BANNER */

.page-banner {
    background: #0b3c5d;
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.page-banner h1 {
    font-size: 42px;
    margin-bottom: 10px;
}


/* ABOUT SECTION */

.about-section {
    padding: 70px 20px;
}

.about-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    margin-bottom: 20px;
    color: #0b3c5d;
}

.about-text p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: #555;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
}


/* PRODUCT LIST */

.about-products {
    background: #f5f5f5;
    padding: 70px 20px;
    text-align: center;
}

.product-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: auto;
    margin-top: 40px;
}

.product-item {
    background: white;
    padding: 15px;
    border-radius: 6px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    font-weight: 600;
}


/* WHY US */

.why-us {
    padding: 70px 20px;
    text-align: center;
}

.why-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: auto;
    margin-top: 40px;
}

.why-box {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}


/* MISSION */

.mission {
    background: #0b3c5d;
    color: white;
    padding: 70px 20px;
}

.mission-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: auto;
    text-align: center;
}

/* CONTACT SECTION */

.contact-section {
    padding: 70px 20px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

/* CONTACT INFO */

.contact-info h2 {
    margin-bottom: 25px;
    color: #0b3c5d;
}

.info-box {
    margin-bottom: 20px;
    background: #f7f7f7;
    padding: 18px;
    border-radius: 6px;
}

/* CONTACT FORM */

.contact-form-box {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.contact-form-box h2 {
    margin-bottom: 20px;
    color: #0b3c5d;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #0b3c5d;
}

/* BUTTON */

.btn-primary {
    background: #0b3c5d;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
}

.btn-primary:hover {
    background: #07283d;
}

/* MAP */

.map-section {
    margin-top: 60px;
}

/* PRODUCTS SECTION */

.products-section {
    padding: 70px 20px;
    background: #f9f9f9;
}

.products-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
margin-top:40px;
}

/* PRODUCT CARD */

.product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
    text-align: center;
    padding-bottom: 20px;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* IMAGE */

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* TITLE */

.product-card h3 {
    font-size: 18px;
    margin: 15px 10px 10px;
    color: #0b3c5d;
}

/* DESCRIPTION */

.product-card p {
    font-size: 14px;
    color: #666;
    padding: 0 15px;
    line-height: 1.6;
}

/* ================= CTA ================= */
.cta {
    background: #0b3c5d;
    color: #fff;
    margin-top: 80px;
    padding: 80px 0;
    text-align: center;
}

/* ================= FOOTER ================= */
.footer {
    background: #0b3c5d;
    color: #fff;
    padding: 20px 20px 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    max-width: 1300px;
    margin: auto;
}

.footer-logo {
    width: 160px;
    margin-bottom: 15px;
}

.footer-col h3 {
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-col p {
    font-size: 14px;
    line-height: 2;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    text-decoration: none;
    color: #ddd;
    font-size: 14px;
}

.footer-col ul li a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 15px;
    font-size: 14px;
}

/* WhatsApp Floating Button */

.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
}

.whatsapp-float img {
    width: 55px;
}

/* ================= WHATSAPP ================= */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    animation: float 2s infinite ease-in-out;
}

.whatsapp-float img {
    width: 55px;
    height: 55px;
}

/* ================= ANIMATIONS ================= */
@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================= MOBILE ================= */
@media (max-width:768px) {

    .container {
        flex-direction: row;
    }

    .logo img {
        height: 50px;
    }

    /* mobile nav */
    .nav {
        display: none;
        position: absolute;
        top: 75px;
        left: 0;
        width: 100%;
        background: #0b3c5d;
        flex-direction: column;
        text-align: center;
        padding: 20px 0;
    }

    .nav a {
        margin: 12px 0;
    }

    .menu-toggle {
        display: block;
    }

    /* dropdown mobile */
    .dropdown-menu {
        position: relative;
        top: 0;
        box-shadow: none;
    }

    /* hero */
    .hero-slider {
        height: 65vh;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 16px;
    }

    @media(max-width:768px) {

        .why-section,
        .industries-section {
            grid-template-columns: 1fr;
            text-align: center;
        }

        .industries-grid {
            grid-template-columns: 1fr;
        }

    }

    /* grids */
    .features,
    .products {
        grid-template-columns: 1fr;
    }

}